diff options
| author | real-zephex <[email protected]> | 2024-03-29 20:48:30 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-29 20:48:30 +0530 |
| commit | fdb7958ca59e4870460950722ed52b9eb5fde10c (patch) | |
| tree | 81f74088b870863dcc476bac2b63c5452f4f73ed /src/app/manga/[title]/[id] | |
| parent | fixes and improvements: dramalaam is no longer hosted on koyeb cuz of (diff) | |
| download | dramalama-fdb7958ca59e4870460950722ed52b9eb5fde10c.tar.xz dramalama-fdb7958ca59e4870460950722ed52b9eb5fde10c.zip | |
fix: minor css fix for light mode users
Diffstat (limited to 'src/app/manga/[title]/[id]')
| -rw-r--r-- | src/app/manga/[title]/[id]/[read]/read.module.css | 6 | ||||
| -rw-r--r-- | src/app/manga/[title]/[id]/info.module.css | 11 | ||||
| -rw-r--r-- | src/app/manga/[title]/[id]/page.jsx | 1 |
3 files changed, 17 insertions, 1 deletions
diff --git a/src/app/manga/[title]/[id]/[read]/read.module.css b/src/app/manga/[title]/[id]/[read]/read.module.css index a95dcfe..9a27a38 100644 --- a/src/app/manga/[title]/[id]/[read]/read.module.css +++ b/src/app/manga/[title]/[id]/[read]/read.module.css @@ -65,4 +65,10 @@ .Image { width: 100%; } +} + +@media (prefers-color-scheme: light) { + .CurrentReadingContainer { + color: black; + } }
\ No newline at end of file diff --git a/src/app/manga/[title]/[id]/info.module.css b/src/app/manga/[title]/[id]/info.module.css index 5bb13fe..fbb493e 100644 --- a/src/app/manga/[title]/[id]/info.module.css +++ b/src/app/manga/[title]/[id]/info.module.css @@ -157,4 +157,15 @@ font-size: 14px; } +} + +@media (prefers-color-scheme: light) { + .MangaDescription { + color: black; + } + + .Character p { + color: black; + } + }
\ No newline at end of file diff --git a/src/app/manga/[title]/[id]/page.jsx b/src/app/manga/[title]/[id]/page.jsx index dc4c682..3038b3f 100644 --- a/src/app/manga/[title]/[id]/page.jsx +++ b/src/app/manga/[title]/[id]/page.jsx @@ -3,7 +3,6 @@ import Image from "next/image"; import Buttons from "./buttons"; import { redirect } from "next/navigation"; import { FaStar } from "react-icons/fa"; -import CurrentReading from "./[read]/currentReading"; export default async function MangaInfo({ params }) { const id = params.id; |